getIntValue1

abstract fun getIntValue1(): Int

Gets the first generic value, attempting to interpret it as an integer.

Implementations should handle potential NumberFormatException if the underlying string value (from getValue1) is not a valid integer. It's recommended that implementations document their behavior in such cases (e.g., return 0, throw an exception, or return a specific error code).

Return

The first value as an integer. Behavior on parsing error is implementation-dependent.